home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / assemblers / cas.lha / dmakefile < prev    next >
Encoding:
Makefile  |  1993-07-13  |  1.0 KB  |  63 lines

  1. CC=dcc
  2.  
  3. DASOBJS=das.o
  4. DSOBJS=ds.o
  5. CASOBJS=cas.o link.o st.o res.o op.o ex.o io.o
  6. RELOCOBJS=reloc.o
  7. SEMIOBJS=semi.o
  8. NLOBJS=nl.o
  9.  
  10. all:    ds cas das reloc semi nl
  11.  
  12. .c.o:    ds cas das reloc semi nl
  13.     $(CC) -c $*.c
  14.  
  15. das:    $(DASOBJS)
  16.         $(CC) -o das $(DASOBJS)
  17. ds:        $(DSOBJS)
  18.         $(CC) -o ds $(DSOBJS)
  19. cas:    $(CASOBJS)
  20.         $(CC) -o cas $(CASOBJS)
  21. reloc:    $(RELOCOBJS)
  22.         $(CC) -o reloc $(RELOCOBJS)
  23. semi:    $(SEMIOBJS)
  24.         $(CC) -o semi $(SEMIOBJS)
  25. nl:        $(NLOBJS)
  26.         $(CC) -o nl $(NLOBJS)
  27.  
  28. cas.o:    cas.c io.h op.h st.h link.h
  29.         $(CC) -c cas.c
  30.  
  31. link.o:    link.c io.h ex.h res.h st.h
  32.         $(CC) -c link.c
  33.  
  34. st.o:        st.c io.h ex.h op.h res.h
  35.         $(CC) -c st.c
  36.  
  37. res.o:    res.c io.h ex.h st.h res.h
  38.         $(CC) -c res.c
  39.  
  40. op.o:        op.c io.h ex.h st.h res.h op.h
  41.         $(CC) -c op.c
  42.  
  43. ex.o:        ex.c io.h ex.h st.h res.h
  44.         $(CC) -c ex.c
  45.  
  46. io.o:        io.c io.h op.h
  47.         $(CC) -c io.c
  48.  
  49. ds.o:        ds.c
  50.         $(CC) -c ds.c
  51.  
  52. das.o:    das.c
  53.         $(CC) -c das.c
  54.  
  55. reloc.o:    reloc.c
  56.         $(CC) -c reloc.c
  57.  
  58. semi.o:    semi.c
  59.         $(CC) -c semi.c
  60.  
  61. nl.o:        nl.c
  62.         $(CC) -c nl.c
  63.